home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1997 February / EnigmA AMIGA RUN 15 (1997)(G.R. Edizioni)(IT)[!][issue 1997-02][PLANET CD V].iso / enigma / earcd / editor / editor2 / htmlttxd.rdm < prev    next >
Text File  |  1997-01-18  |  1KB  |  45 lines

  1. Short:    Html2tex postprocessor, converts double apostrophes and *bold*
  2. Author:   David Fong
  3. Uploader: David Fong <Dr.David.Fong@medical.net.au>
  4. Version:  1.0
  5. Type:     text/tex
  6.  
  7. Description
  8.  
  9.  Post-processor for html2tex (also to be found in text/tex).
  10.  
  11.  Converts double apostrophes (") to `` and ''.
  12.  
  13.  Also converts *bold* pairs (marked by asterisks) into jmsempth{bold}.
  14.  
  15. Usage
  16.  
  17.  HTMLtoTeXAid infile outfile
  18.  
  19.  The program will ask for confirmation, you can either just tap
  20.  return or enter y/yes/yo (or anything else starting with `y') to
  21.  do the conversion, other response are considered to be `no'.
  22.  
  23.  The two replacement strings can overlap in their area of influence.
  24.  
  25. Programming notes
  26.  
  27.  Written in ARexx.
  28.  
  29.  Quite customizable.  For example, look at lines 20 to 22.
  30.  find_string.1 contains the string to search for, which happens to
  31.  be the asterisk.  repl_strng1.1 and repl_strng2.1 contain the strings
  32.  which will alternately replace the asterisk.
  33.  
  34.  Similarly, lines 30 to 32.
  35.  
  36.  
  37. v 1.0 30 December 1996.
  38.  
  39.  Multiple changes just prior to release!
  40.  
  41.  Will only print out text again if it has been changed.
  42.  Will accept any word starting with `y' as a request to change text.
  43.  Provided new example file (the one I actually used to develop the
  44.  program is missing...)
  45.